Skip to main content
Version: 6.0.0-beta.3 - 6.0.0-beta.4

withdrawExpireUnfreeze

After performing the operation of canceling the stake, the user need to call this interface to retrieve resources after waiting for N days. N is a Tron network parameter. (v5.1.0 new interface)

Usage

const transaction = await tronWeb.transactionBuilder.withdrawExpireUnfreeze(address);

Parameters

ParametersDescriptionType
addressrefund account address (base58 or hex)String
optionsPermission id for multi-signature and block header for contract block header info.{ permissionId: number, blockHeader: ... }

Returns

Unsigned transaction object.

Example

> const transaction = await tronWeb.transactionBuilder.withdrawExpireUnfreeze('ownerAddress');